You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Dockerfile to build a docker container for the UL website (production). You would typically use that image and mount its filesystem content using a command like:
#
# docker run -d \
# -it \
# --name ul-website \
# --mount type=bind,source=/srv,target=/srv \
# -p 4896:4896 \
# ul-website:latest
#
# If you are working to develop a new image, you'll typically build it using a command like:
#
# docker build -t ul-website-dev .
#
# You would then replace "ul-website:latest" in the above command with "ul-website-dev".
FROM node:8.12.0-alpine
# Store a copy of our code in a TLD in the container.