Added Dockerfile and gitlab-ci.yml
This commit is contained in:
13
Dockerfile
Normal file
13
Dockerfile
Normal file
@ -0,0 +1,13 @@
|
||||
FROM php:8.1-apache
|
||||
|
||||
MAINTAINER Matthew McKinnon <support@comprofix.com>
|
||||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY --from=composer:2 /usr/bin/composer /usr/local/bin/composer
|
||||
COPY _site/ /var/www/html
|
||||
|
||||
WORKDIR /
|
Reference in New Issue
Block a user