#846 Fixed base image used for PHP-FPM dev container

This commit is contained in:
Alejandro Celaya 2020-11-10 16:08:22 +01:00
parent d60c3a4aa9
commit 5190a03113
3 changed files with 3 additions and 2 deletions

View file

@ -19,6 +19,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), and this
### Fixed ### Fixed
* [#891](https://github.com/shlinkio/shlink/issues/891) Fixed error when running migrations in postgres due to incorrect return type hint. * [#891](https://github.com/shlinkio/shlink/issues/891) Fixed error when running migrations in postgres due to incorrect return type hint.
* [#846](https://github.com/shlinkio/shlink/issues/846) Fixed base image used for the PHP-FPM dev container.
## [2.4.0] - 2020-11-08 ## [2.4.0] - 2020-11-08

View file

@ -1,6 +1,6 @@
FROM php:7.4.11-alpine3.12 as base FROM php:7.4.11-alpine3.12 as base
ARG SHLINK_VERSION=2.3.0 ARG SHLINK_VERSION=2.4.0
ENV SHLINK_VERSION ${SHLINK_VERSION} ENV SHLINK_VERSION ${SHLINK_VERSION}
ENV SWOOLE_VERSION 4.5.5 ENV SWOOLE_VERSION 4.5.5
ENV LC_ALL "C" ENV LC_ALL "C"

View file

@ -1,4 +1,4 @@
FROM php:7.4.11-alpine3.12 FROM php:7.4.11-fpm-alpine3.12
MAINTAINER Alejandro Celaya <alejandro@alejandrocelaya.com> MAINTAINER Alejandro Celaya <alejandro@alejandrocelaya.com>
ENV APCU_VERSION 5.1.18 ENV APCU_VERSION 5.1.18