This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
FunctionProject/website/Dockerfile
2021-04-17 00:02:56 +02:00

10 lines
111 B
Docker

FROM node:14.16.1
WORKDIR /app
COPY ./package*.json ./
RUN npm install
COPY ./ ./
CMD ["npm", "run", "dev"]