Add missing escape sequences to Dockerfile

This commit is contained in:
Cyberboss
2018-09-13 11:09:03 -04:00
parent f190d4b48f
commit b245bf00a9
+3 -3
View File
@@ -22,10 +22,10 @@ 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
#needed for byond
RUN apt-get update \
&& apt-get install -y \
gcc-multilib \ #needed for byond
gcc-multilib \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app