Dockerfile 816 B

123456789101112
  1. # See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/master/containers/ubuntu/.devcontainer/base.Dockerfile
  2. # [Choice] Ubuntu version (use jammy or bionic on local arm64/Apple Silicon): jammy, focal, bionic
  3. ARG VARIANT="jammy"
  4. FROM mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT}
  5. # Derived from Tauri contribution and setup guides:
  6. # See: https://github.com/tauri-apps/tauri/blob/dev/.github/CONTRIBUTING.md#development-guide
  7. # See: https://tauri.studio/v1/guides/getting-started/prerequisites/#setting-up-linux
  8. ARG TAURI_BUILD_DEPS="build-essential curl libappindicator3-dev libgtk-3-dev librsvg2-dev libssl-dev libwebkit2gtk-4.0-dev wget"
  9. RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
  10. && apt-get install -y --no-install-recommends $TAURI_BUILD_DEPS