Skip to content

Commit

Permalink
Merge pull request #25 from darkwizard242/feature/fix-ascii-issue
Browse files Browse the repository at this point in the history
ubuntu 16.04, debian stretch | fix for unicode issue
  • Loading branch information
darkwizard242 authored Oct 12, 2021
2 parents 7aefd84 + 67cb0b7 commit 3b229d4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions debian-stretch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM debian:stretch as base
MAINTAINER darkwizard242 <[email protected]>

## Due to error: (UnicodeEncodeError: 'ascii' codec can't encode character '\xe9' in position 117: ordinal not in range(128))
ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8

ENV DEPENDENCIES "software-properties-common python3 python3-pip python3-setuptools python3-software-properties sudo apt-transport-https iputils-ping wget curl gnupg gcc python3-dev"

ENV PIP_PKGS "ansible"
Expand Down
4 changes: 4 additions & 0 deletions ubuntu-16.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM ubuntu:xenial as base
MAINTAINER darkwizard242 <[email protected]>

## Due to error: (UnicodeEncodeError: 'ascii' codec can't encode character '\xe9' in position 117: ordinal not in range(128))
ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8

ENV DEPENDENCIES "software-properties-common python3 python3-pip python3-setuptools python3-software-properties sudo apt-transport-https iputils-ping wget curl gnupg gcc python3-dev xz-utils"

ENV PIP_PKGS "ansible"
Expand Down

0 comments on commit 3b229d4

Please sign in to comment.