website/Dockerfile

27 lines
1 KiB
Docker
Raw Normal View History

2021-09-26 00:24:09 +02:00
# |--------------------------------------------------------------------------
# | Build SCSS and JS
# |--------------------------------------------------------------------------
2021-09-08 21:05:30 +02:00
FROM node:lts-alpine AS buildJS
2021-01-11 14:10:09 +01:00
WORKDIR /build
2021-09-26 00:12:02 +02:00
COPY . .
RUN mkdir public/js
RUN mkdir public/css
2021-02-28 12:23:22 +01:00
RUN yarn install
RUN yarn compile
2021-01-11 14:10:09 +01:00
2021-09-26 00:24:09 +02:00
# |--------------------------------------------------------------------------
# | Install PHP dependencies
# |--------------------------------------------------------------------------
2021-09-08 21:05:51 +02:00
FROM composer:2 AS composer
2021-05-13 23:15:00 +02:00
WORKDIR /build
2021-10-30 08:46:06 +02:00
COPY --from=buildJS /build .
RUN composer install
2021-05-13 23:15:00 +02:00
2021-09-26 00:24:43 +02:00
# |--------------------------------------------------------------------------
# | Install Webserver
# |--------------------------------------------------------------------------
2021-08-16 20:52:04 +02:00
FROM gitlab.jonasled.de/jonasled/apache-php-minimal:latest
2021-08-16 17:11:03 +02:00
RUN apk update && \
2021-11-18 09:04:17 +01:00
apk add php8-mysqli php8-mbstring php8-curl curl php8-simplexml --no-cache && \
2021-09-26 01:59:37 +02:00
echo "RemoteIPHeader X-Forwarded-For" > /etc/apache2/conf.d/remoteip.conf
2021-10-30 08:46:06 +02:00
COPY --from=composer /build/public .