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