dev: refactoring + lokalise fetch + process

This commit is contained in:
NGPixel
2017-12-03 21:11:26 -05:00
parent 26e3e21005
commit e55c5805b4
95 changed files with 226 additions and 3344 deletions

15
dev/build/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:8-alpine
LABEL maintainer="requarks.io"
RUN apk update && \
apk add bash curl git openssh supervisor --no-cache && \
mkdir -p /var/wiki
WORKDIR /var/wiki
COPY supervisord.conf /etc/supervisord.conf
COPY . /var/wiki
EXPOSE 3000
CMD ["supervisord", "--nodaemon", "-c", "/etc/supervisord.conf"]