Linting adjustments.

This commit is contained in:
soup-bowl
2024-11-17 16:50:16 +00:00
parent 78c529a2ce
commit 38d3f9cbb4
5 changed files with 10 additions and 8 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ LABEL org.opencontainers.image.licenses="MIT"
ENV OPENSIM_VERSION 0.9.2.2
RUN apk add --no-cache bash curl uuidgen screen
RUN apk add --no-cache mono --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing
RUN apk add --no-cache bash curl screen uuidgen && \
apk add --no-cache mono --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing
RUN mkdir /opt/opensim-tmp \
&& curl "http://opensimulator.org/dist/opensim-${OPENSIM_VERSION}.tar.gz" | tar xzf - -C /opt/opensim-tmp \
+3 -2
View File
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
# Cache Bust to avoid caching skipping the latest commit
ADD https://api.github.com/repos/opensim/opensim/git/refs/heads/master version.json
@@ -17,7 +17,8 @@ LABEL org.opencontainers.image.authors="code@soupbowl.io"
LABEL org.opencontainers.image.source="https://github.com/soup-bowl/opensimulator-docker"
LABEL org.opencontainers.image.licenses="MIT"
RUN apt-get update && apt-get install -y apt-utils libgdiplus libc6-dev libsqlite3-dev screen uuid-runtime
RUN apt-get update && apt-get install -y apt-utils libc6-dev libgdiplus libsqlite3-dev screen uuid-runtime \
&& apt-get clean
COPY --from=build /app /opt/opensim
+3 -2
View File
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0 as build
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
# Cache Bust to avoid caching skipping the latest commit
ADD https://api.github.com/repos/opensim/opensim/git/refs/heads/dotnet6 version.json
@@ -17,7 +17,8 @@ LABEL org.opencontainers.image.authors="code@soupbowl.io"
LABEL org.opencontainers.image.source="https://github.com/soup-bowl/opensimulator-docker"
LABEL org.opencontainers.image.licenses="MIT"
RUN apt-get update && apt-get install -y apt-utils libgdiplus libc6-dev libsqlite3-dev screen uuid-runtime
RUN apt-get update && apt-get install -y apt-utils libc6-dev libgdiplus libsqlite3-dev screen uuid-runtime \
&& apt-get clean
COPY --from=build /app /opt/opensim
+1 -1
View File
@@ -9,7 +9,7 @@ ARG OPENSIM_VERSION=0.9.3.0
RUN apt-get update \
&& apt-get install -y apt-utils curl libc6-dev libgdiplus libsqlite3-dev screen uuid-runtime \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
&& apt-get clean
RUN mkdir /opt/opensim-tmp \
&& curl "http://opensimulator.org/dist/opensim-${OPENSIM_VERSION}.tar.gz" | tar xzf - -C /opt/opensim-tmp \
+1 -1
View File
@@ -9,7 +9,7 @@ ARG OPENSIM_VERSION=0.9.2.2
RUN apt-get update \
&& apt-get install -y curl screen uuid-runtime \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
&& apt-get clean
RUN mkdir /opt/opensim-tmp \
&& curl "http://opensimulator.org/dist/opensim-${OPENSIM_VERSION}.tar.gz" | tar xzf - -C /opt/opensim-tmp \