Created
September 24, 2019 21:27
-
-
Save alfredlucero/1f601361db13993a99fc5a760c0f1817 to your computer and use it in GitHub Desktop.
Dockerfile.uitests - STUI to Webdriver SG Blog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:12.9.0 | |
# Create working directory to install dependencies into | |
RUN mkdir -p /opt/frontendapp | |
WORKDIR /opt/frontendapp | |
COPY package.json /opt/frontendapp | |
RUN npm install | |
# Copy over the application code | |
COPY . /opt/frontendapp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment