diff options
| author | 2018-05-23 22:38:20 +0200 | |
|---|---|---|
| committer | 2018-05-23 22:38:20 +0200 | |
| commit | 309a6f93f878fc96951902fc47d45a30ef5f8d71 (patch) | |
| tree | f788b43a892a93d0f97da73f459a55b43e1ea1a0 /docker/Dockerfile | |
| parent | update readme (diff) | |
POC completed
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"] |