FBLA25/Dockerfile
drake 1ba1c25c84
All checks were successful
ci / docker_image (push) Successful in 1m3s
ci / deploy (push) Successful in 16s
fix port 2
2024-12-17 19:58:18 -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 8080
ENTRYPOINT cd /srv/FBLA25 && PORT=8080 node build