mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-27 07:04:57 +01:00
Add gcc-multilib as a necessary dependency for byond to Docker image
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
FROM microsoft/dotnet:2.1-sdk AS build
|
||||
|
||||
WORKDIR /src
|
||||
|
||||
COPY tgstation-server.sln ./
|
||||
@@ -26,6 +27,12 @@ RUN dotnet publish -c Release -o /app/lib/Default && mv /app/lib/Default/appsett
|
||||
FROM microsoft/dotnet:2.1-aspnetcore-runtime
|
||||
EXPOSE 5000
|
||||
|
||||
|
||||
RUN apt-get update
|
||||
&& apt-get install -y \
|
||||
gcc-multilib \ #needed for byond
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY --from=build /app .
|
||||
|
||||
Reference in New Issue
Block a user