This repository has been archived on 2025-03-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
gardev-startpage/docker/Dockerfile
Georgi Gardev 8c19e4e66c Redesign
2023-11-18 15:06:28 +02:00

9 lines
138 B
Docker

FROM node:18-alpine
WORKDIR /app/frontend
COPY package.json .
RUN npm install
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["npm", "start"]