hono / Dockerfile
semuthitamku's picture
Create Dockerfile
79b8443 verified
raw
history blame contribute delete
119 Bytes
FROM node:latest
RUN apt update && apt upgrade -y
WORKDIR /app
COPY package.json .
RUN npm i
COPY . .
CMD ["node", "."]