This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
gractwo-pl/Dockerfile
2022-06-20 20:42:28 +02:00

5 lines
85 B
Docker

FROM node:16.10.0
WORKDIR /app
COPY ./ ./
RUN npm install
CMD ["npm", "run", "build"]