Merge branch 'null31-safe.fiery.me' into safe.fiery.me

This commit is contained in:
Bobby Wibowo 2020-08-21 23:44:17 +07:00
commit d706c07ac1
No known key found for this signature in database
GPG Key ID: 51C3A1E1E22D26CF
2 changed files with 11 additions and 7 deletions

3
.dockerignore Normal file
View File

@ -0,0 +1,3 @@
# git directories
.git
.github

View File

@ -8,16 +8,17 @@ 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
RUN apk --no-cache update \
&& apk add --no-cache --virtual build-dependencies python make g++ \
&& apk add --no-cache ffmpeg \
&& apk del build-dependencies \
&& yarn install --production \
&& yarn cache clean
ADD config.sample.js config.js
RUN yarn install
RUN apk update
RUN apk del build-dependencies
COPY . .
EXPOSE 9999
CMD ["node", "lolisafe.js"]