revert d89ed9e17df3b995c9c4ed185afb0a1a7c2a6d12
All checks were successful
/ docker (push) Successful in 2m7s

revert alpine tests
This commit is contained in:
Lee
2023-07-07 23:04:51 +00:00
parent d89ed9e17d
commit f83830443b
2 changed files with 17 additions and 16 deletions

View File

@ -1,10 +1,12 @@
FROM alpine:3.14
FROM ubuntu:23.04
# Install dependencies
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/*
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
# Set up nginx
COPY ./docker/nginx.conf /etc/nginx/nginx.conf