Last active
October 21, 2017 00:59
-
-
Save diegomengarda/ac90fc680a7705eb9ec36f665ca70bb0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
web: | |
image: nginx-test | |
ports: | |
- "8090:80" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM nginx:latest | |
MAINTAINER Diego Mengarda | |
RUN apt-get -qq update && \ | |
apt-get clean && \ | |
apt-get update | |
RUN apt-get install -y --no-install-recommends apt-utils && \ | |
apt-get install -y locales && \ | |
apt-get install -y build-essential curl software-properties-common && \ | |
locale-gen en_US en_US.UTF-8 pt_BR.UTF-8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment