Skip to content

Instantly share code, notes, and snippets.

@alfredlucero
Created September 24, 2019 21:27
Show Gist options
  • Save alfredlucero/1f601361db13993a99fc5a760c0f1817 to your computer and use it in GitHub Desktop.
Save alfredlucero/1f601361db13993a99fc5a760c0f1817 to your computer and use it in GitHub Desktop.
Dockerfile.uitests - STUI to Webdriver SG Blog
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