-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from MaxDragonheart/feat-add-poetry-#8
feat add poetry #8
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
FROM ubuntu:22.04 as os | ||
# LABEL about the custom image | ||
LABEL maintainer="Massimiliano Moraca <[email protected]>" | ||
WORKDIR /app | ||
# Disable Prompt During Packages Installation | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
# Update&Upgrade Ubuntu | ||
|
@@ -15,8 +16,6 @@ RUN apt install -y \ | |
wget \ | ||
curl \ | ||
aptitude | ||
RUN mkdir "home/app" | ||
WORKDIR "home/app" | ||
|
||
# Manage tzdata | ||
RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC | ||
|
@@ -41,6 +40,7 @@ RUN aptitude install -y \ | |
RUN pip3 install --upgrade pip | ||
# Upgrade Python's packages | ||
RUN pip3 install --upgrade wheel pillow setuptools | ||
RUN pip3 install poetry | ||
|
||
# Python OS as Layer | ||
FROM python-os as gis-os | ||
|