Skip to content

Commit

Permalink
Fix files missed in merge, remove base image.
Browse files Browse the repository at this point in the history
  • Loading branch information
darobs committed Jan 19, 2022
1 parent 942e1b0 commit e18a956
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 16 deletions.

This file was deleted.

This file was deleted.

8 changes: 6 additions & 2 deletions edge-modules/azure-monitor/docker/linux/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
ARG base_tag=1.0.5.14-linux-arm32v7
FROM azureiotedge/azureiotedge-module-base:${base_tag}
ARG base_tag=3.1.19-bionic-arm32v7
FROM mcr.microsoft.com/dotnet/runtime:${base_tag}

# Add an unprivileged user account for running the module
RUN useradd -ms /bin/bash moduleuser
USER moduleuser

ARG EXE_DIR=.

Expand Down
8 changes: 6 additions & 2 deletions edge-modules/azure-monitor/docker/linux/arm64v8/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
ARG base_tag=1.0.5.14-linux-arm64v8
FROM azureiotedge/azureiotedge-module-base:${base_tag}
ARG base_tag=3.1.19-bionic-arm64v8
FROM mcr.microsoft.com/dotnet/runtime:${base_tag}

# Add an unprivileged user account for running the module
RUN useradd -ms /bin/bash moduleuser
USER moduleuser

ARG EXE_DIR=.

Expand Down

0 comments on commit e18a956

Please sign in to comment.