Skip to content

Instantly share code, notes, and snippets.

@epoz
Created April 5, 2022 16:48
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 epoz/2959fae29476aa8d97905528f5636759 to your computer and use it in GitHub Desktop.
Save epoz/2959fae29476aa8d97905528f5636759 to your computer and use it in GitHub Desktop.
Running transcrypt in Docker
FROM ubuntu:focal
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y && apt-get upgrade -y
RUN apt-get -y install python3 python3-pip default-jre-headless
RUN pip3 install transcrypt==3.9.0 htmltree==0.7.6
RUN mkdir /out
WORKDIR /out
ENTRYPOINT ["transcrypt"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment