Dockerfile 733 B

123456789101112131415
  1. # [Choice] Go version (use -bullseye variants on local arm64/Apple Silicon): 1, 1.16, 1.17, 1-bullseye, 1.16-bullseye, 1.17-bullseye, 1-buster, 1.16-buster, 1.17-buster
  2. ARG VARIANT=1.17-bullseye
  3. FROM mcr.microsoft.com/vscode/devcontainers/go:0-${VARIANT}
  4. # [Optional] If your requirements rarely change, uncomment this section to add them to the image.
  5. # COPY requirements.txt /tmp/pip-tmp/
  6. # RUN pip3 --disable-pip-version-check --no-cache-dir install -r /tmp/pip-tmp/requirements.txt \
  7. # && rm -rf /tmp/pip-tmp
  8. # [Optional] Uncomment this section to install additional OS packages.
  9. # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
  10. # && apt-get -y install --no-install-recommends <your-package-list-here>