11 lines
257 B
Docker
11 lines
257 B
Docker
# Use our base image
|
|
FROM gitlab.luranasoft.com:5050/luos/docker/base-image:1.0.9-php8.3
|
|
|
|
# Set the working directory
|
|
WORKDIR /code
|
|
|
|
# Copy the application code from the current directory to /code in the image
|
|
COPY . .
|
|
|
|
RUN chown -R www-data:www-data /code
|