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
2020-12-22 13:45:15 +01:00

10 lines
122 B
Docker

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