Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed build failure #12

Merged
merged 1 commit into from
Jul 30, 2024
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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
**__pycache__**
*.tar
*.tar.gz
*.swp

# Prevent certificates from getting checked in
*.ca
Expand Down
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# BSD 3-Clause License
#
# Copyright 2022 Hewlett Packard Enterprise Development LP
# Copyright [2022,2024] Hewlett Packard Enterprise Development LP
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
Expand Down Expand Up @@ -28,7 +28,7 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

FROM artifactory.algol60.net/docker.io/library/alpine:3.16 AS base
FROM artifactory.algol60.net/docker.io/library/alpine:3.17 AS base

COPY src/requirements.txt /app/requirements.txt

Expand All @@ -48,6 +48,7 @@ RUN set -ex \
curl \
&& pip3 install --upgrade \
pip \
&& pip3 install \
setuptools \
&& pip3 install wheel \
&& pip3 install -r /app/requirements.txt \
Expand Down
Loading