mirror of
https://github.com/filecoffee/filehost.git
synced 2024-11-13 19:49:56 +01:00
8 lines
119 B
Docker
8 lines
119 B
Docker
FROM node:20
|
|
WORKDIR /usr/src/app
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
COPY . .
|
|
EXPOSE 3000
|
|
|
|
CMD ["node", "index.js"]
|