Skip to content

Commit 3904966

Browse files
committed
Remove silly things
1 parent e71786f commit 3904966

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ COPY entrypoint.sh /entrypoint.sh
2424
RUN curl -L https://fly.io/install.sh | sh \
2525
&& echo 'export FLYCTL_INSTALL="/root/.fly"' >> ~/.bashrc \
2626
&& echo 'export PATH="$FLYCTL_INSTALL/bin:$PATH"' >> ~/.bashrc \
27-
&& code-server --install-extension elixir-lsp.elixir-ls \
28-
&& code-server --install-extension FlyIoStaging.fly-extension
27+
&& code-server --install-extension elixir-lsp.elixir-ls
2928

3029
COPY --from=proxy /tired-proxy /tired-proxy
3130

entrypoint.sh

-10
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,6 @@ if [ -z "$(ls -A /project)" ]; then
1515

1616
cd /project
1717

18-
echo "Preparing README"
19-
20-
# We need to use a temporary file because `sh` does not
21-
# work properly rewritting files directly with `sed` not `tee`
22-
sed "s/\${FLY_CODE_URL}/https:\/\/${FLY_APP_NAME}.fly.dev/g" README.md | \
23-
sed "s/\${FLY_DEVELOPMENT_URL}/https:\/\/${FLY_APP_NAME}.fly.dev:4000/g" | \
24-
tee /tmp/README.md
25-
26-
mv /tmp/README.md /project/README.md
27-
2818
echo "Setting up Elixir environment"
2919

3020
mix local.hex --force

0 commit comments

Comments
 (0)