You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lolisafe/Dockerfile

24 lines
426 B
Docker

FROM node:lts-alpine
LABEL name "lolisafe-bobbywibowo"
LABEL version "3.0.0"
LABEL maintainer "evanmn <docker@evan.mn>"
WORKDIR /usr/src/lolisafe
COPY package.json yarn.lock ./
RUN apk add --no-cache --virtual build-dependencies python make g++ && apk add --no-cache ffmpeg
ADD config.sample.js config.js
RUN yarn install
RUN apk update
RUN apk del build-dependencies
COPY . .
EXPOSE 9999
CMD ["node", "lolisafe.js"]