Skip to content
This repository has been archived by the owner on Jun 6, 2018. It is now read-only.

Commit

Permalink
Merge pull request #32 from postmanlabs/feature/encoding
Browse files Browse the repository at this point in the history
Set default encoding in the docker files
  • Loading branch information
shamasis committed Aug 26, 2016
2 parents 9ddcddf + 3a8ee99 commit 058230c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions images/alpine33/Dockerfile
Expand Up @@ -4,6 +4,11 @@ MAINTAINER Postman Labs <help@getpostman.com>
# Set node version
ENV NODE_VERSION 4.3.0

# Set locale
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8

# Install node
RUN apk add --update nodejs=${NODE_VERSION}-r0;

Expand Down
5 changes: 5 additions & 0 deletions images/ubuntu1404/Dockerfile
Expand Up @@ -9,6 +9,11 @@ RUN apt-get update && apt-get install -y \
# Set node version
ENV NODE_VERSION 4.3.0

# Set locale
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8

# Install node
RUN npm install -g n;
RUN n ${NODE_VERSION};
Expand Down

0 comments on commit 058230c

Please sign in to comment.