This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
ServerSpacebarOld/Dockerfile
2021-05-23 04:26:24 +03:00

11 lines
229 B
Docker

FROM node:lts-alpine
WORKDIR /usr/src/fosscord-gateway
COPY . .
RUN apk --no-cache --virtual build-dependencies add \
python \
make \
g++
RUN npm install
RUN apk del build-dependencies
EXPOSE 3002
CMD ["npm", "start"]