Newer
Older
percord / Dockerfile
@Paul Munteanu Paul Munteanu on 23 May 2021 229 bytes Remove redundant Dockerfile commands
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"]