Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
lxRbckl committed Aug 17, 2024
1 parent 78afeaf commit c75f2fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
FROM python:3.8-slim

# referencing docker compose (find wiki) #
ENV PORT ${PORT}
ENV HOST ${HOST}
ENV port ${port}
ENV port ${host}

WORKDIR /app
COPY . .
Expand Down
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

if (__name__ == '__main__'):

host = environ.get('HOST')
port = environ.get('PORT')
host = environ.get('host')
port = environ.get('port')

objLayout = layout()
objCallbacks = callbacks()
Expand Down

0 comments on commit c75f2fa

Please sign in to comment.