Skip to content

Instantly share code, notes, and snippets.

@meysam81
Created July 8, 2024 10:43
Show Gist options
  • Save meysam81/7463e0f459046659bde198875211e9c3 to your computer and use it in GitHub Desktop.
Save meysam81/7463e0f459046659bde198875211e9c3 to your computer and use it in GitHub Desktop.
# syntax=docker/dockerfile:1
FROM --platform=${TARGETPLATFORM} python:3.12-alpine
ARG TARGETARCH
ADD --chmod=755 https://github.com/krallin/tini/releases/download/v0.19.0/tini-static-${TARGETARCH} /usr/local/bin/tini
RUN apk update && apk upgrade
ENTRYPOINT ["/usr/local/bin/tini", "--"]
CMD python -m http.server 8000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment