mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-06 19:02:33 +01:00
dc22db6902
This reverts commit 79aae987fd
.
7 lines
129 B
Docker
7 lines
129 B
Docker
FROM node:lts-alpine
|
|
WORKDIR /usr/src/fosscord-cdn
|
|
COPY package.json .
|
|
RUN npm install
|
|
COPY . .
|
|
EXPOSE 3003
|
|
CMD ["node", "dist/"] |