Skip to content

Instantly share code, notes, and snippets.

@ddebroy
Last active June 27, 2019 18:26
Show Gist options
  • Save ddebroy/0e6a1eebe8b4ab191eb8aaa2abaaafa9 to your computer and use it in GitHub Desktop.
Save ddebroy/0e6a1eebe8b4ab191eb8aaa2abaaafa9 to your computer and use it in GitHub Desktop.
# Source: http://frippery.org/busybox/
# This Dockerfile builds a (32-bit) busybox images which is suitable for
# running many of the integration-cli tests for Docker against a Windows
# daemon. It will not run on nanoserver as that is 64-bit only.
#
# John Howard (IRC jhowardmsft, Email [email protected])
#
# To build: docker build -t busybox .
# To publish: Needs someone with publishing rights
#
# http://github.com/jhowardmsft/busybox
FROM microsoft/windowsservercore:latest
RUN mkdir C:\tmp && mkdir C:\bin
ADD http://frippery.org/files/busybox/busybox.exe /bin/
RUN setx /M PATH "C:\bin;%PATH%"
RUN powershell busybox.exe --list ^|%{$nul = cmd /c mklink C:\bin\$_.exe busybox.exe}
CMD ["sh"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment