972bdd90a3
ERROR INFO: Step 4/5 : RUN rm -r /var/lib/apt/lists/* ---> Running in 4a3aa49e0e6e rm: can't remove '/var/lib/apt/lists/*': No such file or directory ERROR: Service 'php-worker' failed to build: The command '/bin/sh -c rm -r /var/lib/apt/lists/*' returned a non-zero code: 1
41 lines
1.3 KiB
Docker
41 lines
1.3 KiB
Docker
#
|
|
#--------------------------------------------------------------------------
|
|
# Image Setup
|
|
#--------------------------------------------------------------------------
|
|
#
|
|
# To take a look at the'php-worker' base Image, visit its DockerHub page
|
|
# https://hub.docker.com/r/nielsvdoorn/laravel-supervisor/
|
|
#
|
|
|
|
FROM nielsvdoorn/laravel-supervisor
|
|
|
|
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
|
|
|
#
|
|
#--------------------------------------------------------------------------
|
|
# Optional Supervisord Configuration
|
|
#--------------------------------------------------------------------------
|
|
#
|
|
# Modify the ./supervisor.conf file to match your App's requirements.
|
|
# Make sure you rebuild your container with every change.
|
|
#
|
|
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
|
|
|
#
|
|
#--------------------------------------------------------------------------
|
|
# Optional Software's Installation
|
|
#--------------------------------------------------------------------------
|
|
#
|
|
# If you need to modify this image, feel free to do it right here.
|
|
#
|
|
# -- Your awesome modifications go here -- #
|
|
|
|
|
|
#
|
|
#--------------------------------------------------------------------------
|
|
# Final Touch
|
|
#--------------------------------------------------------------------------
|
|
#
|
|
|
|
WORKDIR /etc/supervisor/conf.d/
|