Juggled around some more dockerfiles

This commit is contained in:
Kieran Eglin 2024-06-13 15:53:58 -07:00
parent 144ea666ea
commit 4fccd63c69
No known key found for this signature in database
GPG key ID: 193984967FCF432D
2 changed files with 1 additions and 5 deletions

View file

@ -7,8 +7,7 @@ services:
- '.:/app' - '.:/app'
ports: ports:
- '4008:4008' - '4008:4008'
command: command: bash -c "chmod +x docker/docker-run.dev.sh && docker/docker-run.dev.sh"
- ./docker/docker-run.dev.sh
stdin_open: true stdin_open: true
tty: true tty: true
env_file: env_file:

View file

@ -53,9 +53,6 @@ ENV LC_ALL en_US.UTF-8
WORKDIR /app WORKDIR /app
COPY . ./ COPY . ./
# Needs permissions to be updated AFTER the copy step
RUN chmod +x ./docker/docker-run.dev.sh
# Install Elixir deps # Install Elixir deps
# RUN mix archive.install github hexpm/hex branch latest # RUN mix archive.install github hexpm/hex branch latest
RUN mix deps.get RUN mix deps.get