First pass of Docker shit

This commit is contained in:
The Shittinator
2026-02-22 19:43:11 -06:00
parent 342e5ce0d9
commit 2e1f52810e
3 changed files with 20 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
#
# LMGCITFY Dockerfile
#
FROM docker.io/library/node:22 AS prod
RUN npm install && \
npm run build
EXPOSE 5000
ENTRYPOINT [ "npm", "run", "start" ]