We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fab3a6b commit 3f96732Copy full SHA for 3f96732
Dockerfile
@@ -1,6 +1,12 @@
1
# Thank you Microsoft! Thank you PowerShell! Thank you Docker!
2
FROM mcr.microsoft.com/powershell
3
4
+# InstallAptPackages determines additional packages to install
5
+ARG InstallAptPackages=git curl ca-certificates libc6 libgcc1
6
+
7
+# Install additional packages
8
+RUN apt-get update && apt-get install -y $InstallAptPackages
9
10
# Set the module name to the name of the module we are building
11
ARG ModuleName=4bitcss
12
# Copy the module into the container
0 commit comments