mirror of
https://github.com/Lovinoes/images.git
synced 2024-12-21 16:37:45 -05:00
Create Dockerfile
This commit is contained in:
parent
3467180731
commit
df8e313cba
1 changed files with 30 additions and 0 deletions
30
java-zulu/8/Dockerfile
Normal file
30
java-zulu/8/Dockerfile
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
FROM azul/zulu-openjdk:8
|
||||||
|
|
||||||
|
# Metadata
|
||||||
|
LABEL author="Lovinoes" maintainer="lovinoes@lovinoes.de"
|
||||||
|
LABEL org.opencontainers.image.source="https://github.com/lovinoes/images"
|
||||||
|
LABEL org.opencontainers.image.licenses="MIT"
|
||||||
|
|
||||||
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
|
|
||||||
|
# Install necessary packages
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get -y install --no-install-recommends ffmpeg iproute2 git sqlite3 python3 tzdata ca-certificates dnsutils fontconfig libfreetype6 libstdc++6 lsof build-essential locales \
|
||||||
|
&& apt-get clean \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
|
&& useradd -m -d /home/container container \
|
||||||
|
&& locale-gen en_US.UTF-8
|
||||||
|
|
||||||
|
# Set locale and language environment variables
|
||||||
|
ENV LC_ALL=en_US.UTF-8
|
||||||
|
ENV LANG=en_US.UTF-8
|
||||||
|
ENV LANGUAGE=en_US.UTF-8
|
||||||
|
|
||||||
|
# Copy the entrypoint script
|
||||||
|
USER container
|
||||||
|
ENV USER=container HOME=/home/container
|
||||||
|
WORKDIR /home/container
|
||||||
|
|
||||||
|
# Set the entrypoint command
|
||||||
|
COPY ./entrypoint.sh /entrypoint.sh
|
||||||
|
CMD [ "/bin/bash", "/entrypoint.sh" ]
|
Loading…
Reference in a new issue