Skip to content
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
10 changes: 6 additions & 4 deletions src/dotnet-core/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ RUN set -xe \
&& adduser -u 1001 -G custom-group -D -H custom-user
COPY ./src/shared/entrypoint.sh /entrypoint.sh
COPY --from=builder /contrast /contrast
RUN mkdir -p /contrast/runtimes/linux/native \
&& cp /contrast/runtimes/linux-x64/native/ContrastChainLoader.so /contrast/runtimes/linux/native
RUN set -xe \
&& mkdir -p /contrast/runtimes/linux/native \
&& cp /contrast/runtimes/linux-x64/native/ContrastChainLoader.so /contrast/runtimes/linux/native
ARG VERSION=4.2.8
ENV CONTRAST_MOUNT_PATH=/contrast-init \
CONTRAST_VERSION=${VERSION} \
Expand All @@ -38,8 +39,9 @@ RUN set -xe \
&& adduser -u 1001 -G custom-group -D -H custom-user
COPY ./src/shared/entrypoint.sh /entrypoint.sh
COPY --from=builder /contrast /contrast
RUN mkdir -p /contrast/runtimes/linux/native \
&& cp /contrast/runtimes/linux-arm64/native/ContrastChainLoader.so /contrast/runtimes/linux/native
RUN set -xe \
&& mkdir -p /contrast/runtimes/linux/native \
&& cp /contrast/runtimes/linux-arm64/native/ContrastChainLoader.so /contrast/runtimes/linux/native
ARG VERSION=4.2.8
ENV CONTRAST_MOUNT_PATH=/contrast-init \
CONTRAST_VERSION=${VERSION} \
Expand Down
Loading