Skip to content

Instantly share code, notes, and snippets.

@alterakey
Last active December 11, 2023 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alterakey/a91684c1cf197c8005aa7964be97a229 to your computer and use it in GitHub Desktop.
Save alterakey/a91684c1cf197c8005aa7964be97a229 to your computer and use it in GitHub Desktop.
Dockerfile for pyxamstore
from python:3.9-slim
run apt-get update -y && apt-get install -y git
run git clone https://github.com/jakev/pyxamstore.git build && (cd build && python ./setup.py install) && rm -rf build
run mkdir /out
workdir /out
entrypoint ["/usr/local/bin/pyxamstore"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment