Docker! Less CSS bloat

This commit is contained in:
Bingus_Violet 2023-12-28 17:55:39 -06:00
parent f55552fbf9
commit 27e8ca5fa3
2 changed files with 12 additions and 259 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM node:20
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
CMD [ "node", "index.js" ]