2FAuth/Dockerfile

186 lines
6.7 KiB
Docker
Raw Normal View History

ARG BUILDPLATFORM=linux/amd64
ARG TARGETPLATFORM
2021-08-04 17:03:28 +02:00
ARG ALPINE_VERSION=3.14
ARG PHP_VERSION=7.3-alpine${ALPINE_VERSION}
2021-07-29 23:44:30 +02:00
ARG COMPOSER_VERSION=2.1
2021-08-02 17:27:21 +02:00
ARG SUPERVISORD_VERSION=v0.7.3
2021-07-29 23:44:30 +02:00
FROM --platform=${BUILDPLATFORM} composer:${COMPOSER_VERSION} AS build-composer
2021-07-29 23:44:30 +02:00
FROM composer:${COMPOSER_VERSION} AS composer
2021-08-02 17:27:21 +02:00
FROM qmcgaw/binpot:supervisord-${SUPERVISORD_VERSION} AS supervisord
2021-07-29 23:44:30 +02:00
FROM --platform=${BUILDPLATFORM} php:${PHP_VERSION} AS vendor
COPY --from=build-composer --chown=${UID}:${GID} /usr/bin/composer /usr/bin/composer
2021-08-04 17:03:28 +02:00
RUN apk add --no-cache unzip
WORKDIR /srv
COPY artisan composer.json composer.lock ./
COPY database ./database
RUN composer install --prefer-dist --no-scripts --no-dev --no-autoloader
2021-08-04 17:03:28 +02:00
RUN composer dump-autoload --no-scripts --no-dev --optimize
2021-08-03 03:25:42 +02:00
FROM --platform=${BUILDPLATFORM} vendor AS test
COPY . .
RUN mv .env.travis .env
RUN composer install
RUN php artisan key:generate
ENTRYPOINT [ "/srv/vendor/bin/phpunit" ]
2021-08-04 17:03:28 +02:00
FROM alpine:${ALPINE_VERSION}
2021-07-29 23:44:30 +02:00
ARG UID=1000
ARG GID=1000
# Composer 2
COPY --from=composer --chown=${UID}:${GID} /usr/bin/composer /usr/bin/composer
2021-08-02 17:27:21 +02:00
# Supervisord from https://github.com/ochinchina/supervisord
COPY --from=supervisord --chown=${UID}:${GID} /bin /usr/local/bin/supervisord
2021-07-29 23:44:30 +02:00
# Install PHP and PHP system dependencies
2021-08-04 17:03:28 +02:00
RUN apk add --update --no-cache \
# PHP
2021-08-04 17:03:28 +02:00
php7 \
# Composer dependencies
php7-phar \
2021-08-04 15:35:55 +02:00
# PHP SQLite driver
2021-08-04 17:03:28 +02:00
php7-pdo_sqlite php7-sqlite3 \
# PHP extensions
2022-02-10 11:59:40 +01:00
php7-xml php7-gd php7-mbstring php7-tokenizer php7-cli php7-fileinfo php7-bcmath php7-ctype \
2021-08-04 17:03:28 +02:00
# Runtime dependencies
php7-session php7-json php7-openssl \
2021-08-02 17:27:21 +02:00
# Nginx and PHP FPM to serve over HTTP
2021-08-04 17:03:28 +02:00
php7-fpm nginx \
&& \
# Clean up
2021-08-04 17:03:28 +02:00
rm /etc/nginx/nginx.conf && \
# Fix ownership to ${UID}:${GID}
2021-08-04 17:03:28 +02:00
chown -R ${UID}:${GID} /var/lib/nginx/
2021-07-29 23:44:30 +02:00
# PHP FPM configuration
# Change username and ownership in php-fpm pool config
2021-08-04 17:03:28 +02:00
RUN sed -i '/user = nobody/d' /etc/php7/php-fpm.d/www.conf && \
sed -i '/group = nobody/d' /etc/php7/php-fpm.d/www.conf && \
sed -i '/listen.owner/d' /etc/php7/php-fpm.d/www.conf && \
sed -i '/listen.group/d' /etc/php7/php-fpm.d/www.conf
2021-07-30 00:26:58 +02:00
# Pre-create files with the correct permissions
2021-07-29 23:44:30 +02:00
RUN mkdir /run/php && \
2021-08-04 17:03:28 +02:00
chown ${UID}:${GID} /run/php /var/log/php7 && \
chmod 700 /run/php /var/log/php7
2021-07-29 23:44:30 +02:00
# Nginx configuration
2021-07-29 23:44:30 +02:00
EXPOSE 8000/tcp
2021-08-04 17:03:28 +02:00
RUN touch /run/nginx/nginx.pid /var/lib/nginx/logs/error.log && \
chown ${UID}:${GID} /run/nginx/nginx.pid /var/lib/nginx/logs/error.log
COPY --chown=${UID}:${GID} docker/nginx.conf /etc/nginx/nginx.conf
2021-08-02 16:40:10 +02:00
RUN nginx -t
2021-07-29 23:44:30 +02:00
2021-08-02 17:27:21 +02:00
# Supervisord configuration
COPY --chown=${UID}:${GID} docker/supervisord.conf /etc/supervisor/supervisord.conf
2021-08-02 17:27:21 +02:00
2021-07-29 23:44:30 +02:00
# Create end user directory
RUN mkdir -p /2fauth && \
chown -R ${UID}:${GID} /2fauth && \
2021-07-29 23:44:30 +02:00
chmod 700 /2fauth
# Create /srv internal directory
WORKDIR /srv
RUN chown -R ${UID}:${GID} /srv && \
2021-07-29 23:44:30 +02:00
chmod 700 /srv
# Run without root
USER ${UID}:${GID}
2021-07-29 23:44:30 +02:00
# Dependencies
COPY --from=vendor --chown=${UID}:${GID} /srv/vendor /srv/vendor
2021-07-29 23:44:30 +02:00
# Copy the rest of the code
COPY --chown=${UID}:${GID} . .
2021-08-04 17:03:28 +02:00
# RUN composer dump-autoload --no-scripts --no-dev --optimize
2021-07-29 23:44:30 +02:00
# Entrypoint
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]
COPY --chown=${UID}:${GID} docker/entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod 500 /usr/local/bin/entrypoint.sh
2021-07-29 23:44:30 +02:00
ENV \
# You can change the name of the app
APP_NAME=2FAuth \
# You can leave this on "local". If you change it to production most console commands will ask for extra confirmation.
# Never set it to "testing".
APP_ENV=local \
# Set to true if you want to see debug information in error screens.
APP_DEBUG=false \
# This should be your email address
SITE_OWNER=mail@example.com \
# The encryption key for our database and sessions. Keep this very secure.
# If you generate a new one all existing data must be considered LOST.
# Change it to a string of exactly 32 chars or use command `php artisan key:generate` to generate it
APP_KEY=SomeRandomStringOf32CharsExactly \
# This variable must match your installation's external address but keep in mind that
# it's only used on the command line as a fallback value.
APP_URL=http://localhost \
# Turn this to true if you want your app to react like a demo.
# The Demo mode reset the app content every hours and set a generic demo user.
IS_DEMO_APP=false \
# The log channel defines where your log entries go to.
# 'daily' is the default logging mode giving you 5 daily rotated log files in /storage/logs/.
# Several other options exist. You can use 'single' for one big fat error log (not recommended).
# Also available are 'syslog', 'errorlog' and 'stdout' which will log to the system itself.
LOG_CHANNEL=daily \
# Log level. You can set this from least severe to most severe:
# debug, info, notice, warning, error, critical, alert, emergency
# If you set it to debug your logs will grow large, and fast. If you set it to emergency probably
# nothing will get logged, ever.
APP_LOG_LEVEL=notice \
# Database config & credentials
2021-08-04 15:35:55 +02:00
# DB_CONNECTION can only be sqlite
2021-07-29 23:44:30 +02:00
DB_CONNECTION=sqlite \
2021-07-31 15:43:00 +02:00
DB_DATABASE="/srv/database/database.sqlite" \
2021-07-29 23:44:30 +02:00
# If you're looking for performance improvements, you could install memcached.
CACHE_DRIVER=file \
SESSION_DRIVER=file \
# Mail settings
# Refer your email provider documentation to configure your mail settings
# Set a value for every available setting to avoid issue
MAIL_DRIVER=log \
MAIL_HOST=smtp.mailtrap.io \
MAIL_PORT=2525 \
MAIL_FROM=changeme@example.com \
MAIL_USERNAME=null \
MAIL_PASSWORD=null \
MAIL_ENCRYPTION=null \
MAIL_FROM_NAME=null \
MAIL_FROM_ADDRESS=null \
# Leave the following configuration vars as is.
# Unless you like to tinker and know what you're doing.
BROADCAST_DRIVER=log \
QUEUE_DRIVER=sync \
SESSION_LIFETIME=12 \
REDIS_HOST=127.0.0.1 \
REDIS_PASSWORD=null \
REDIS_PORT=6379 \
PUSHER_APP_ID= \
PUSHER_APP_KEY= \
PUSHER_APP_SECRET= \
PUSHER_APP_CLUSTER=mt1 \
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" \
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" \
MIX_ENV=local
2021-08-03 15:24:33 +02:00
ARG VERSION=unknown
ARG CREATED="an unknown date"
ARG COMMIT=unknown
ENV \
VERSION=${VERSION} \
CREATED=${CREATED} \
COMMIT=${COMMIT}
2021-08-03 15:24:33 +02:00
LABEL \
org.opencontainers.image.authors="https://github.com/Bubka" \
org.opencontainers.image.version=$VERSION \
org.opencontainers.image.created=$CREATED \
org.opencontainers.image.revision=$COMMIT \
org.opencontainers.image.url="https://github.com/Bubka/2FAuth" \
org.opencontainers.image.documentation="https://hub.docker.com/r/2fauth/2fauth" \
org.opencontainers.image.source="https://github.com/Bubka/2FAuth" \
org.opencontainers.image.title="2fauth" \
org.opencontainers.image.description="A web app to manage your Two-Factor Authentication (2FA) accounts and generate their security codes"