Spaces:
ainz
/
Configuration error

hi / Dockerfile
ainz's picture
x
688d352
raw
history blame contribute delete
90 Bytes
FROM node:lts-alpine
WORKDIR /app
COPY . .
RUN npm i
EXPOSE 3000
CMD ["npm", "start"]