Files
hammond/ui/docker-dev.dockerfile
Alf Sebastian Houge fc9796081e Remove yarn from project
2023-01-31 21:53:53 +01:00

15 lines
339 B
Docker

# https://github.com/cypress-io/cypress-docker-images/tree/master/base
FROM cypress/base:10.16.0
# Make the `app` folder the current working directory
WORKDIR /app
# Copy dependency-related files
COPY package.json ./
# Install project dependencies
RUN npm install
# Expose ports 8080, which the dev server will be bound to
EXPOSE 8080