first commit
This commit is contained in:
15
ui/docker-dev.dockerfile
Normal file
15
ui/docker-dev.dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
# 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 ./
|
||||
COPY yarn.lock ./
|
||||
|
||||
# Install project dependencies
|
||||
RUN yarn install
|
||||
|
||||
# Expose ports 8080, which the dev server will be bound to
|
||||
EXPOSE 8080
|
||||
Reference in New Issue
Block a user