# docker build -t mcanterb/asn1test
# docker push mcanterb/asn1test

FROM python:3.9-slim-bullseye
RUN apt-get update -y && \
    apt-get install -y asn1c && \
    rm -rf /var/lib/apt/lists/* && \
    pip install --no-cache-dir asn1tools pycrate



