-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f65f1f
commit 36fcb35
Showing
3 changed files
with
10 additions
and
6 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 |
---|---|---|
|
@@ -5,7 +5,7 @@ ARG INTERPRETER | |
ARG INTERPRETER_VERSION | ||
|
||
LABEL [email protected] \ | ||
vendor=puzl.ee | ||
vendor=https://puzl.cloud | ||
|
||
ENV USER=ubuntu \ | ||
UID=1000 \ | ||
|
@@ -16,8 +16,10 @@ ENV DEBIAN_FRONTEND="noninteractive" | |
|
||
SHELL ["/bin/bash", "-c"] | ||
|
||
RUN rm -rf /usr/bin/python3 \ | ||
/usr/bin/python \ | ||
RUN apt-get purge -y python3.11 \ | ||
&& apt-get autoremove \ | ||
&& rm -rf /usr/bin/python3 \ | ||
/usr/bin/python \ | ||
&& ln -s /usr/bin/python3.10 /usr/bin/python3 \ | ||
&& ln -s /usr/bin/python3 /usr/bin/python | ||
|
||
|
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,7 +4,7 @@ FROM {{ image }}:{{ tag }} | |
|
||
{%- macro label() -%} | ||
LABEL [email protected] \ | ||
vendor=puzl.ee | ||
vendor=https://puzl.cloud | ||
{% endmacro %} | ||
|
||
{%- macro arg(arg) -%} | ||
|
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