Adds local details to local dockerfile (#75)

This commit is contained in:
Kieran 2024-03-11 20:05:19 -07:00 committed by GitHub
parent e1fc361e98
commit f156fec4b7

View file

@ -5,6 +5,11 @@ ARG DEV_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEB
FROM ${DEV_IMAGE}
# Set the locale deets
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
# Install debian packages
RUN apt-get update -qq
RUN apt-get install -y inotify-tools ffmpeg curl git openssh-client \