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

chore(deps): update alpine docker tag to v3.19.0 #1185

Merged
merged 2 commits into from
Dec 8, 2023
Merged
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
22 changes: 11 additions & 11 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
FROM alpine:3.18.5 as build-env
FROM alpine:3.19.0 as build-env

RUN apk --no-cache add \
bash=5.2.15-r5 \
cmake=3.26.5-r0 \
gcc=12.2.1_git20220924-r10 \
g++=12.2.1_git20220924-r10\
git=2.40.1-r0 \
make=4.4.1-r1 \
python3=3.11.6-r0 \
bash=5.2.21-r0 \
cmake=3.27.8-r0 \
gcc=13.2.1_git20231014-r0 \
g++=13.2.1_git20231014-r0\
git=2.43.0-r0 \
make=4.4.1-r2 \
python3=3.11.6-r1 \
patch=2.7.6-r10 \
linux-headers=6.3-r0 && \
linux-headers=6.5-r0 && \
mkdir /install

ARG BUILD_TYPE=Debug
Expand All @@ -45,9 +45,9 @@ RUN cmake /src/Sample-Server/.github/ \
-DCMAKE_INSTALL_PREFIX:PATH=/install /build &&\
cmake --build .

FROM alpine:3.18.5 as runtime
FROM alpine:3.19.0 as runtime
RUN apk --no-cache add \
libstdc++=12.2.1_git20220924-r10
libstdc++=13.2.1_git20231014-r0
COPY --from=build-env /install/bin /app
COPY ./configuration.docker.json /configuration.json

Expand Down