bing / Dockerfile
Niansuh's picture
Create Dockerfile
b9da621
raw
history blame contribute delete
148 Bytes
FROM node:20
RUN git clone https://github.com/Niansuh/bingo.git
WORKDIR "bingo"
RUN npm i
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]