1
Fork 0
mirror of https://github.com/Steffo99/sophon.git synced 2024-12-22 06:44:21 +00:00

Create docker image for the frontend

This commit is contained in:
Steffo 2021-10-18 21:29:11 +02:00
parent dcf4b051ae
commit 36b1dbbfd2

18
frontend/Dockerfile Normal file
View file

@ -0,0 +1,18 @@
FROM node:16.11.1-bullseye
LABEL maintainer="Stefano Pigozzi <me@steffo.eu>"
# Set the base workdir
WORKDIR /usr/src/app
# Copy the yarn files
COPY package.json ./package.json
COPY yarn.lock ./yarn.lock
# Install the package
RUN yarn install
# Copy the rest of the project into the container
COPY . .
# Start the serve server
ENTRYPOINT ["yarn", "run", "serve"]