File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,11 @@ FROM mysql:8.0-debian
22LABEL org.opencontainers.image.authors=
"[email protected] " 33
44RUN apt-get update && \
5- apt-get install -y zip psmisc python3 python3-boto3
5+ apt-get install -y zip psmisc python3 python3-venv
6+
7+ RUN python3 -m venv /opt/venv
8+ ENV PATH="/opt/venv/bin:$PATH"
9+ RUN pip install boto3
610
711WORKDIR /app
812ADD . /app
Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 1.1.2
18+ version : 1.1.3
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
2222# follow Semantic Versioning. They should reflect the version the application is using.
2323# It is recommended to use it with quotes.
24- appVersion : " 1.1.2 "
24+ appVersion : " 1.1.3 "
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ backup:
7171 image :
7272 registry : " "
7373 repository : 36node/mysql-backup
74- tag : 1.1.2
74+ tag : 1.1.3
7575 digest : " "
7676 # # Specify a imagePullPolicy
7777 # # Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
@@ -139,7 +139,7 @@ restore:
139139 image :
140140 registry : " "
141141 repository : 36node/mysql-backup
142- tag : 1.1.2
142+ tag : 1.1.3
143143 digest : " "
144144 # # Specify a imagePullPolicy
145145 # # Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
You can’t perform that action at this time.
0 commit comments