質問編集履歴

2

Dockerfileの追加

2020/03/10 02:55

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -351,3 +351,43 @@
351
351
  @endsection
352
352
 
353
353
  ```
354
+
355
+
356
+
357
+ Dockerfile
358
+
359
+ ```
360
+
361
+ FROM php:7.3-fpm-alpine
362
+
363
+ LABEL maintainer "ucan-lab"
364
+
365
+
366
+
367
+ ARG TZ
368
+
369
+ ENV COMPOSER_ALLOW_SUPERUSER 1
370
+
371
+ ENV COMPOSER_HOME /composer
372
+
373
+
374
+
375
+ RUN set -eux && \
376
+
377
+ apk add --update-cache --no-cache --virtual=.build-dependencies tzdata && \
378
+
379
+ cp /usr/share/zoneinfo/${TZ} /etc/localtime && \
380
+
381
+ apk del .build-dependencies && \
382
+
383
+ docker-php-ext-install bcmath pdo_mysql && \
384
+
385
+ curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \
386
+
387
+ composer config -g repos.packagist composer https://packagist.jp && \
388
+
389
+ composer global require hirak/prestissimo
390
+
391
+
392
+
393
+ ```

1

画像の修正

2020/03/10 02:55

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -8,7 +8,19 @@
8
8
 
9
9
 
10
10
 
11
- [エラー画](https://gyazo.com/cacc00d59917918b54e812bc1da2727f)
11
+ ![![エラー画](6fe885d55ae66002ab59d8413734efb5.png)
12
+
13
+ (エラー画面)
14
+
15
+
16
+
17
+ エラーコード
18
+
19
+ ```
20
+
21
+ GD Library extension not available with this PHP installation.
22
+
23
+ ```
12
24
 
13
25
 
14
26