Skip to content

Instantly share code, notes, and snippets.

@diegomengarda
Last active October 21, 2017 00:59
Show Gist options
  • Save diegomengarda/ac90fc680a7705eb9ec36f665ca70bb0 to your computer and use it in GitHub Desktop.
Save diegomengarda/ac90fc680a7705eb9ec36f665ca70bb0 to your computer and use it in GitHub Desktop.
version: '2'
services:
web:
image: nginx-test
ports:
- "8090:80"
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