Skip to content
Snippets Groups Projects
Commit 0879448f authored by Jakob Moser's avatar Jakob Moser
Browse files

Add Dockerfile

parents
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:latest
WORKDIR /workdir
# Install dependencies
RUN apt-get update && apt-get install -y \
ca-certificates \
imagemagick \
xvfb \
&& rm -rf /var/lib/apt/lists/*
# Set up repository for xle and install xle
ADD zinnwerk-archive-keyring.gpg /usr/share/keyrings/zinnwerk-archive-keyring.gpg
ADD zinnwerk.sources /etc/apt/sources.list.d
RUN apt-get update && apt-get install -y \
xle-2017 \
&& rm -rf /var/lib/apt/lists/*
# Add entrypoint script
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT ["bash", "/entrypoint.sh"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment