diff options
Diffstat (limited to 'docker/Dockerfile')
| -rw-r--r-- | docker/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 47be8b1..88d1919 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -14,10 +14,10 @@ RUN pip install pipenv RUN mkdir -p /snekbox COPY Pipfile /snekbox COPY Pipfile.lock /snekbox -COPY snekbox /snekbox +COPY . /snekbox WORKDIR /snekbox RUN pipenv sync ENTRYPOINT ["/sbin/tini", "--"] -CMD ["pipenv", "run", "consume"] +CMD ["pipenv", "run", "snekbox"] |