Skip to content
Snippets Groups Projects
Commit 997dc82e authored by Jonas Leder's avatar Jonas Leder
Browse files

fix wromg path for web page

parent 0f8f82a7
No related branches found
No related tags found
1 merge request!3Alpine webserver
Pipeline #1269 failed
...@@ -21,12 +21,13 @@ FROM alpine:latest ...@@ -21,12 +21,13 @@ FROM alpine:latest
# |-------------------------------------------------------------------------- # |--------------------------------------------------------------------------
RUN apk update && \ RUN apk update && \
apk upgrade && \ apk upgrade && \
apk add apache2 php8-apache2 php8-mysqli curl apk add apache2 php8-apache2 php8-mysqli curl && \
rm /var/www/localhost/htdocs/
# |-------------------------------------------------------------------------- # |--------------------------------------------------------------------------
# | copy website from node build # | copy website from node build
# |-------------------------------------------------------------------------- # |--------------------------------------------------------------------------
COPY --from=composer /build/public /usr/local/apache2/htdocs/ COPY --from=composer /build/public /var/www/localhost/htdocs/
# |-------------------------------------------------------------------------- # |--------------------------------------------------------------------------
# | enable apache modules # | enable apache modules
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment