-
Notifications
You must be signed in to change notification settings - Fork 13
/
Dockerfile
33 lines (28 loc) · 1.43 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
FROM dockershelf/debian:bookworm
ARG BUILD_DATE
ARG VCS_REF
ARG VERSION
LABEL org.label-schema.build-date=${BUILD_DATE} \
org.label-schema.name="latex-basic" \
org.label-schema.description="A Latex (basic) image based on Debian sid" \
org.label-schema.url="https://github.com/Dockershelf/dockershelf" \
org.label-schema.vcs-ref=${VCS_REF} \
org.label-schema.vcs-url="https://github.com/Dockershelf/dockershelf" \
org.label-schema.vendor="Luis Alejandro Martínez Faneyth" \
org.label-schema.version=${VERSION} \
org.label-schema.schema-version="1.0.0-rc.1" \
org.opencontainers.image.created=${BUILD_DATE} \
org.opencontainers.image.title="latex-basic" \
org.opencontainers.image.description="A Latex (basic) image based on Debian sid" \
org.opencontainers.image.url="https://github.com/Dockershelf/dockershelf" \
org.opencontainers.image.revision=${VCS_REF} \
org.opencontainers.image.source="https://github.com/Dockershelf/dockershelf" \
org.opencontainers.image.vendor="Luis Alejandro Martínez Faneyth" \
org.opencontainers.image.version=${VERSION} \
org.opencontainers.image.licenses="GPL-3.0" \
maintainer="Luis Alejandro Martínez Faneyth <[email protected]>"
ENV LATEX_VER_NUM="basic"
COPY sample.tex /root/
COPY build-image.sh library.sh /usr/share/dockershelf/latex/
RUN bash /usr/share/dockershelf/latex/build-image.sh
CMD ["/bin/bash"]