This file contains 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
# Available versions: https://hub.docker.com/r/hexpm/elixir/tags | |
FROM hexpm/elixir:1.13.2-erlang-23.3.4.9-alpine-3.15.0 AS builder | |
# Install build tools. | |
RUN apk add --no-cache build-base git=2.34.2-r0 | |
# Prepare build directory. | |
WORKDIR /app | |
# Copy the sources. |
This file contains 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
brew install bash | |
# Add the new shell to the list of allowed shells | |
sudo bash -c 'echo /usr/local/bin/bash >> /etc/shells' | |
# Change to the new shell | |
chsh -s /usr/local/bin/bash |