Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
**
!requirements.txt
!search_test.py
!modules
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ARG APP_GROUP_ID="1000"
### --------------------------------------------------------------------
### Build Stage
### --------------------------------------------------------------------
FROM python:"$PYTHON_VERSION"-slim-"${DEBIAN_VERSION}" as build
FROM python:"$PYTHON_VERSION"-slim-"${DEBIAN_VERSION}" AS build

ARG APP_PYTHON_USERBASE

Expand Down Expand Up @@ -50,7 +50,7 @@ CMD ["bash"]
### --------------------------------------------------------------------
### App Stage
### --------------------------------------------------------------------
FROM python:"$PYTHON_VERSION"-alpine"${ALPINE_VERSION}" as app
FROM python:"$PYTHON_VERSION"-alpine"${ALPINE_VERSION}" AS app

# Fetch values from ARGs that were declared at the top of this file
ARG APP_NAME
Expand Down
Loading