From 3b789d0fd4c1d813788dd8d92692cefd6d175271f5a36b00949d71a66c2f4aa1 Mon Sep 17 00:00:00 2001 From: RavenX8 <7156279+RavenX8@users.noreply.github.com> Date: Fri, 7 Mar 2025 20:01:17 -0500 Subject: [PATCH] - fix: Dockerfile build errors for newer rust version --- api-service/Dockerfile | 4 ++-- auth-service/Dockerfile | 4 ++-- character-service/Dockerfile | 4 ++-- database-service/Dockerfile | 4 ++-- packet-service/Dockerfile | 4 ++-- session-service/Dockerfile | 4 ++-- world-service/Dockerfile | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/api-service/Dockerfile b/api-service/Dockerfile index ce2541d..6453c54 100644 --- a/api-service/Dockerfile +++ b/api-service/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3 AS builder +FROM rust:alpine AS builder LABEL authors="raven" -RUN apk add --no-cache rust cargo openssl-dev protoc +RUN apk add --no-cache musl-dev libressl-dev protobuf-dev WORKDIR /usr/src/utils COPY ./utils . diff --git a/auth-service/Dockerfile b/auth-service/Dockerfile index aa230c1..a186bdd 100644 --- a/auth-service/Dockerfile +++ b/auth-service/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3 AS builder +FROM rust:alpine AS builder LABEL authors="raven" -RUN apk add --no-cache rust cargo openssl-dev protoc +RUN apk add --no-cache musl-dev libressl-dev protobuf-dev WORKDIR /usr/src/utils COPY ./utils . diff --git a/character-service/Dockerfile b/character-service/Dockerfile index 0d552dc..86bb9dc 100644 --- a/character-service/Dockerfile +++ b/character-service/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3 AS builder +FROM rust:alpine AS builder LABEL authors="raven" -RUN apk add --no-cache rust cargo openssl-dev protoc +RUN apk add --no-cache musl-dev libressl-dev protobuf-dev WORKDIR /usr/src/utils COPY ./utils . diff --git a/database-service/Dockerfile b/database-service/Dockerfile index 2357be4..30ae9ec 100644 --- a/database-service/Dockerfile +++ b/database-service/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3 AS builder +FROM rust:alpine AS builder LABEL authors="raven" -RUN apk add --no-cache rust cargo openssl-dev protoc +RUN apk add --no-cache musl-dev libressl-dev protobuf-dev WORKDIR /usr/src/utils COPY ./utils . diff --git a/packet-service/Dockerfile b/packet-service/Dockerfile index 0cec58b..9d0a0f6 100644 --- a/packet-service/Dockerfile +++ b/packet-service/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3 AS builder +FROM rust:alpine AS builder LABEL authors="raven" -RUN apk add --no-cache rust cargo openssl-dev protoc +RUN apk add --no-cache musl-dev libressl-dev protobuf-dev WORKDIR /usr/src/utils COPY ./utils . diff --git a/session-service/Dockerfile b/session-service/Dockerfile index ec4bc03..a12bc8e 100644 --- a/session-service/Dockerfile +++ b/session-service/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3 AS builder +FROM rust:alpine AS builder LABEL authors="raven" -RUN apk add --no-cache rust cargo openssl-dev protoc +RUN apk add --no-cache musl-dev libressl-dev protobuf-dev WORKDIR /usr/src/utils COPY ./utils . diff --git a/world-service/Dockerfile b/world-service/Dockerfile index b04218b..a81c3ce 100644 --- a/world-service/Dockerfile +++ b/world-service/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3 AS builder +FROM rust:alpine AS builder LABEL authors="raven" -RUN apk add --no-cache rust cargo openssl-dev protoc +RUN apk add --no-cache musl-dev libressl-dev protobuf-dev WORKDIR /usr/src/utils COPY ./utils .