runs in docker now

This commit is contained in:
2019-08-06 18:50:20 +00:00
parent dfdd42f006
commit 2fa0db0e2b
5 changed files with 39 additions and 0 deletions

27
Dockerfile Normal file
View File

@@ -0,0 +1,27 @@
FROM phusion/baseimage:0.11
ENV LOG_TO_SYSLOG 1
ENV APPDIR /var/app
VOLUME /strpc
ENV STRPC_BASE /var/lib/strpc
ADD ./sources.list /etc/apt/sources.list
RUN apt update && apt install -y python3-pip
RUN pip3 install pipenv
RUN mkdir -p /var/lib/strpc
ADD . /var/app
WORKDIR /var/app
RUN pipenv install
RUN mkdir -p /etc/service/strpcd && \
mv /var/app/strpcd.run /etc/service/strpcd/run && \
chmod +x /etc/service/strpcd/run