bingo2024-4-20 / Dockerfile
lhybosco's picture
Update Dockerfile
1b09be3 verified
raw
history blame contribute delete
147 Bytes
FROM node:20
RUN git clone https://github.com/weaigc/bingo.git
WORKDIR "bingo"
RUN npm i
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]