-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reimplement BMP #9
Comments
Just note that this image format requirement should be let this package require You can refer the imagebmp function reference. |
I want to know why the And I saw that it should require I just have the test inside a new Docker container and it looks fine when I call InstructionHere is the # Install required packages
FROM ubuntu:16.04
RUN apt-get update
RUN apt-get install -y software-properties-common
RUN apt-get install -y python-software-properties
RUN LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php
RUN apt-get update
RUN apt-get install -y apt-transport-https apt-utils curl php7.1-cli php7.1-mysql php7.1-curl php7.1-gd
RUN apt-get install -y libcurl3-openssl-dev
ENTRYPOINT [ "bash" ] After building this container successfully, try entering to this container via interactive shell. And the final result is as follows: When I use the Here is the Here is the `Dockerfile` I create to build the `php-7.1` container.
```bash
# Install required packages
FROM ubuntu:16.04
RUN apt-get update
RUN apt-get install -y software-properties-common
RUN apt-get install -y python-software-properties
RUN LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php
RUN apt-get update
RUN apt-get install -y apt-transport-https apt-utils curl php7.2-cli php7.2-mysql php7.2-curl php7.2-gd
RUN apt-get install -y libcurl3-openssl-dev
ENTRYPOINT [ "bash" ] |
Nice research! Version 7.2.0 was released 30 Nov 2017. I don't have a problem with having 7.2 as requirement, not personally anyway. I've not tested it, but if the rest of the formats still work without crashing the whole thing below 7.2 we could have a mixed requirement, something like below? Requirements
...or add exceptions to throw errors on old versions with unsupported formats. |
@jenstornell, actually, the |
No description provided.
The text was updated successfully, but these errors were encountered: