1
Fork 0
mirror of https://github.com/Steffo99/sophon.git synced 2024-12-22 14:54:22 +00:00
sophon/frontend/Dockerfile

18 lines
370 B
Docker

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"]