Skip to content

Commit

Permalink
dockerfile cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jprusik committed Feb 19, 2021
1 parent a07ab43 commit 38bab8c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ RUN apt-get update && apt-get install -y netcat

RUN pip install --upgrade pip
COPY requirements.txt ./requirements.txt
COPY manage.py ./manage.py
RUN pip install -r requirements.txt
RUN pip install gunicorn==20.0

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This repository represents development of the dedicated Flask back-end API app w
If you have Docker installed, you can build and run a container to access the api

```shell
docker build -f Dockerfile.dev -t sgapi:dev . && docker run --env-file ./.env.dev -d -p 5000:5000 sgapi:dev
docker build -f Dockerfile.dev -t sgapi:dev . && docker run --env-file ./.env -d -p 5000:5000 sgapi:dev
```

## Limitations & Known Issues
Expand Down
1 change: 0 additions & 1 deletion app/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from flask import jsonify

import app.models as models
import app.mocks as mocks


API_KEY = os.getenv('API_KEY')
Expand Down

0 comments on commit 38bab8c

Please sign in to comment.