Add fivem image
This commit is contained in:
parent
86bad3c9c9
commit
4d9a1e9b1f
3 changed files with 50 additions and 0 deletions
1
.github/workflows/docker-publish.yml
vendored
1
.github/workflows/docker-publish.yml
vendored
|
@ -17,6 +17,7 @@ jobs:
|
|||
image:
|
||||
- "alpine"
|
||||
- "alpine-install"
|
||||
- "fivem"
|
||||
- "java7"
|
||||
- "java8"
|
||||
- "java9"
|
||||
|
|
23
fivem/Dockerfile
Normal file
23
fivem/Dockerfile
Normal file
|
@ -0,0 +1,23 @@
|
|||
#
|
||||
# Copyright (c) 2020 Matthew Penner
|
||||
#
|
||||
# This repository is licensed under the MIT License.
|
||||
# https://github.com/matthewpi/images/blob/master/LICENSE.md
|
||||
#
|
||||
|
||||
FROM --platform=$BUILDPLATFORM alpine:latest
|
||||
|
||||
LABEL author="Matthew Penner" maintainer="matthew@pterodactyl.io"
|
||||
|
||||
LABEL org.opencontainers.image.source="https://github.com/matthewpi/images"
|
||||
LABEL org.opencontainers.image.licenses=MIT
|
||||
|
||||
RUN apk add --update --no-cache ca-certificates c-ares icu-libs libssl1.1 libstdc++ libunwind musl-dbg tzdata v8 zlib \
|
||||
&& adduser -D -h /home/container container
|
||||
|
||||
USER container
|
||||
ENV USER=container HOME=/home/container
|
||||
WORKDIR /home/container
|
||||
|
||||
COPY ./entrypoint.sh /entrypoint.sh
|
||||
CMD [ "/bin/ash", "/entrypoint.sh" ]
|
26
fivem/entrypoint.sh
Normal file
26
fivem/entrypoint.sh
Normal file
|
@ -0,0 +1,26 @@
|
|||
#!/bin/ash
|
||||
|
||||
#
|
||||
# Copyright (c) 2020 Matthew Penner
|
||||
#
|
||||
# This repository is licensed under the MIT License.
|
||||
# https://github.com/matthewpi/images/blob/master/LICENSE.md
|
||||
#
|
||||
|
||||
# Default the TZ environment variable to UTC.
|
||||
TZ=${TZ:-UTC}
|
||||
export TZ
|
||||
|
||||
# Switch to the container's working directory
|
||||
cd /home/container
|
||||
|
||||
# Set environment variable that holds the Internal Docker IP
|
||||
export INTERNAL_IP=`ip route get 1 | awk '{print $NF;exit}'`
|
||||
|
||||
# Replace variables in the startup command
|
||||
MODIFIED_STARTUP=`eval echo $(echo ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g')`
|
||||
printf '\033[1m\033[33mcontainer@pterodactyl~ \033[0m'
|
||||
echo "${MODIFIED_STARTUP}"
|
||||
|
||||
# Run the startup command
|
||||
eval ${MODIFIED_STARTUP}
|
Loading…
Reference in a new issue