mirror of
https://github.com/getnamingo/registry.git
synced 2025-08-06 09:35:03 +02:00
Dockerize Control Panel
This commit is contained in:
parent
199e0e4772
commit
98b2f93d7e
2 changed files with 19 additions and 1 deletions
14
cp/Dockerfile
Normal file
14
cp/Dockerfile
Normal file
|
@ -0,0 +1,14 @@
|
|||
FROM php:8.3-alpine
|
||||
|
||||
WORKDIR /var/www/cp
|
||||
|
||||
# Install Composer
|
||||
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN composer install
|
||||
|
||||
VOLUME /var/log/namingo
|
||||
|
||||
CMD ["php-fpm","-D"]
|
Loading…
Add table
Add a link
Reference in a new issue