diff options
| author | 2019-09-19 22:46:24 +1000 | |
|---|---|---|
| committer | 2019-09-19 22:46:24 +1000 | |
| commit | 9c23b4ae59449bacddbbf898e30850c691916803 (patch) | |
| tree | 9d0a201d11ed4ad1af4fd396e610494018769f04 /docker | |
| parent | Merge pull request #270 from python-discord/flake8-annotations (diff) | |
Cleanup Dockerfile and CI Build & Push stage
Diffstat (limited to 'docker')
| -rw-r--r-- | docker/Dockerfile | 26 | ||||
| -rw-r--r-- | docker/docker-compose.yml | 12 | 
2 files changed, 0 insertions, 38 deletions
| diff --git a/docker/Dockerfile b/docker/Dockerfile deleted file mode 100644 index 67767ced..00000000 --- a/docker/Dockerfile +++ /dev/null @@ -1,26 +0,0 @@ -FROM python:3.7.2-alpine3.9 - -ENTRYPOINT ["python"] -CMD ["-m", "bot"] - -ENV PIP_NO_CACHE_DIR="false" \ -    PIPENV_DONT_USE_PYENV="1" \ -    PIPENV_HIDE_EMOJIS="1" \ -    PIPENV_IGNORE_VIRTUALENVS="1" \ -    PIPENV_NOSPIN="1" - -RUN apk add --no-cache --update \ -        build-base \ -        git \ -        libffi-dev \ -        libwebp-dev \ -        # Pillow dependencies -        freetype-dev \ -        libjpeg-turbo-dev \ -        zlib-dev -RUN pip install pipenv - -COPY . /bot -WORKDIR /bot - -RUN pipenv install --deploy --system diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml deleted file mode 100644 index 6e274451..00000000 --- a/docker/docker-compose.yml +++ /dev/null @@ -1,12 +0,0 @@ -version: "3.7" -services: -  dumbo: -    image: pythondiscord/seasonalbot:latest -    container_name: seasonalbot -    init: true - -    restart: always - -    environment: -      - SEASONALBOT_TOKEN - | 
