mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-01-09 04:27:47 +08:00
add Docker (Apache)
This commit is contained in:
parent
437ac5b120
commit
0e755dbc53
40
.dockerignore
Normal file
40
.dockerignore
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
.git/
|
||||||
|
.github/
|
||||||
|
.vscode/
|
||||||
|
coverage/
|
||||||
|
node_modules/
|
||||||
|
plugins/**
|
||||||
|
public/app/*
|
||||||
|
public/lang/*
|
||||||
|
public/plugins/**
|
||||||
|
resources/assets/tests/
|
||||||
|
scripts/
|
||||||
|
storage/debugbar
|
||||||
|
storage/framework/cache/**
|
||||||
|
storage/framework/sessions/**
|
||||||
|
storage/framework/testing/
|
||||||
|
storage/framework/views/**
|
||||||
|
storage/logs/**
|
||||||
|
storage/packages/**
|
||||||
|
storage/textures/*
|
||||||
|
tests/
|
||||||
|
vendor/
|
||||||
|
_ide_helper.php
|
||||||
|
.dockerignore
|
||||||
|
.editorconfig
|
||||||
|
.env
|
||||||
|
.env.testing
|
||||||
|
.eslintignore
|
||||||
|
.gitignore
|
||||||
|
.php_cs.*
|
||||||
|
.phpstorm.meta.php
|
||||||
|
.phpunit.result.cache
|
||||||
|
azure-pipelines.yml
|
||||||
|
crowdin.yml
|
||||||
|
docker-compose.yml
|
||||||
|
*.Dockerfile
|
||||||
|
index.html
|
||||||
|
phpunit.xml
|
||||||
|
README*.md
|
||||||
|
server.php
|
||||||
|
yarn-error.log
|
@ -9,5 +9,5 @@ indent_style = space
|
|||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
[*.{php,md,ps1}]
|
[*.{php,md,ps1,Dockerfile}]
|
||||||
indent_size = 4
|
indent_size = 4
|
||||||
|
77
apache.Dockerfile
Normal file
77
apache.Dockerfile
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
FROM composer:latest as vendor
|
||||||
|
WORKDIR /app
|
||||||
|
COPY composer.json composer.lock ./
|
||||||
|
ARG GITHUB_TOKEN="t"
|
||||||
|
RUN if [ ${GITHUB_TOKEN} != "t" ]; then \
|
||||||
|
composer config -g github-oauth.github.com ${GITHUB_TOKEN} && \
|
||||||
|
composer global require hirak/prestissimo \
|
||||||
|
;fi
|
||||||
|
RUN composer i \
|
||||||
|
--prefer-dist \
|
||||||
|
--no-dev \
|
||||||
|
--no-suggest \
|
||||||
|
--no-progress \
|
||||||
|
--no-autoloader \
|
||||||
|
--no-scripts \
|
||||||
|
--no-interaction \
|
||||||
|
--ignore-platform-reqs
|
||||||
|
|
||||||
|
FROM node:12-alpine AS build
|
||||||
|
WORKDIR /app
|
||||||
|
COPY package.json yarn.lock ./
|
||||||
|
RUN yarn
|
||||||
|
COPY resources ./resources/
|
||||||
|
COPY babel.config.json postcss.config.js \
|
||||||
|
tsconfig.build.json tsconfig.json webpack.config.js ./
|
||||||
|
RUN yarn build && \
|
||||||
|
cp ./resources/assets/src/images/bg.png ./public/app && \
|
||||||
|
cp ./resources/assets/src/images/favicon.ico ./public/app
|
||||||
|
|
||||||
|
|
||||||
|
FROM php:7.4-apache
|
||||||
|
ARG CHANGE_SOURCE=false
|
||||||
|
RUN if [ ${CHANGE_SOURCE} = true ]; then \
|
||||||
|
sed -i 's/deb.debian.org/mirrors.tuna.tsinghua.edu.cn/' /etc/apt/sources.list && \
|
||||||
|
sed -i 's/security.debian.org/mirrors.tuna.tsinghua.edu.cn/' /etc/apt/sources.list && \
|
||||||
|
sed -i 's/security-cdn.debian.org/mirrors.tuna.tsinghua.edu.cn/' /etc/apt/sources.list \
|
||||||
|
;fi
|
||||||
|
RUN apt-get update && apt-get install -y \
|
||||||
|
libfreetype6-dev \
|
||||||
|
libpng-dev \
|
||||||
|
libzip-dev && \
|
||||||
|
rm -rf /var/lib/apt/lists/* && \
|
||||||
|
mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" && \
|
||||||
|
{ \
|
||||||
|
echo '[PHP]'; \
|
||||||
|
echo 'post_max_size = 30M'; \
|
||||||
|
echo 'upload_max_filesize = 20M'; \
|
||||||
|
} | tee $PHP_INI_DIR/conf.d/tweak.ini && \
|
||||||
|
docker-php-ext-configure gd --with-freetype && \
|
||||||
|
docker-php-ext-install -j "$(nproc)" gd zip
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
COPY . .
|
||||||
|
COPY --from=vendor /usr/bin/composer /usr/bin/composer
|
||||||
|
COPY --from=vendor /app ./
|
||||||
|
COPY --from=build /app/public/app ./public/app/
|
||||||
|
RUN composer dump-autoload -o --no-dev -n && \
|
||||||
|
cp .env.example .env && \
|
||||||
|
php artisan key:generate && \
|
||||||
|
mv .env storage/ && \
|
||||||
|
ln -s storage/.env .env && \
|
||||||
|
rm storage/install.lock && \
|
||||||
|
touch storage/database.db && \
|
||||||
|
mkdir storage/plugins && \
|
||||||
|
chown -R www-data:www-data storage public && \
|
||||||
|
sed 's/PLUGINS_DIR=null/PLUGINS_DIR=\/app\/storage\/plugins/' -i storage/.env && \
|
||||||
|
sed 's/DB_CONNECTION=mysql/DB_CONNECTION=sqlite/' -i storage/.env && \
|
||||||
|
sed 's/DB_DATABASE=blessingskin/DB_DATABASE=\/app\/storage\/database\.db/' -i storage/.env
|
||||||
|
|
||||||
|
ENV APACHE_DOCUMENT_ROOT /app/public
|
||||||
|
RUN sed -ri -e 's!/var/www/html!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/sites-available/*.conf && \
|
||||||
|
sed -ri -e 's!/var/www/!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/apache2.conf /etc/apache2/conf-available/*.conf && \
|
||||||
|
a2enmod rewrite headers
|
||||||
|
|
||||||
|
EXPOSE 80
|
||||||
|
|
||||||
|
VOLUME ["/app/storage"]
|
Loading…
Reference in New Issue
Block a user