FBLA25/Dockerfile
drake 09f04f1648
All checks were successful
ci / docker_image (push) Successful in 1m5s
ci / deploy (push) Successful in 5s
fix port
2024-12-17 19:55:16 -06:00

12 lines
257 B
Docker

FROM git.marinodev.com/marinodev/node_gitea_ci:latest
RUN cd /srv && \
git clone https://git.marinodev.com/MarinoDev/FBLA25.git
WORKDIR /srv/FBLA25
RUN npm ci --omit dev
RUN npm run build
EXPOSE 8002
ENTRYPOINT cd /srv/FBLA25 && PORT=8002 node build