alpine tests
Some checks failed
/ docker (push) Failing after 26s

This commit is contained in:
Lee
2023-07-08 00:03:09 +01:00
parent 7d2e2b69d2
commit d89ed9e17d
2 changed files with 16 additions and 17 deletions

View File

@ -1,12 +1,10 @@
FROM ubuntu:23.04
FROM alpine:3.14
# Install dependencies
RUN apt update
RUN DEBIAN_FRONTEND=noninteractive \
apt install nginx php8.1 php8.1-fpm php8.1-gd php8.1-imagick -y
# Clean up
RUN apt clean
RUN apk update && \
apk upgrade && \
apk add --no-cache nginx php8.1 php8.1-fpm php8.1-gd php8.1-imagick && \
rm -rf /var/cache/apk/*
# Set up nginx
COPY ./docker/nginx.conf /etc/nginx/nginx.conf