Skip to content

Commit ef19c83

Browse files
authored
chore: clean-up (#748)
* chore: Remove old CI workflow * chore: Update Dockerfile
1 parent 38edff0 commit ef19c83

File tree

2 files changed

+6
-141
lines changed

2 files changed

+6
-141
lines changed

Diff for: .github/workflows/ci.yml

-135
This file was deleted.

Diff for: Dockerfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ARG DEBIAN_VERSION=bullseye-20240812-slim
1919
ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}"
2020
ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"
2121

22-
FROM ${BUILDER_IMAGE} as builder
22+
FROM ${BUILDER_IMAGE} AS builder
2323

2424
# install build dependencies
2525
RUN apt-get update -y && apt-get install -y build-essential git nodejs npm\
@@ -76,9 +76,9 @@ RUN apt-get update -y && apt-get install -y libstdc++6 openssl libncurses5 local
7676
# Set the locale
7777
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen
7878

79-
ENV LANG en_US.UTF-8
80-
ENV LANGUAGE en_US:en
81-
ENV LC_ALL en_US.UTF-8
79+
ENV LANG="en_US.UTF-8"
80+
ENV LANGUAGE="en_US:en"
81+
ENV LC_ALL="en_US.UTF-8"
8282

8383
WORKDIR "/app"
8484
RUN chown nobody /app
@@ -94,7 +94,7 @@ USER nobody
9494
EXPOSE 8080
9595

9696
# Appended by flyctl
97-
ENV ECTO_IPV6 true
98-
ENV ERL_AFLAGS "-proto_dist inet6_tcp"
97+
ENV ECTO_IPV6="true"
98+
ENV ERL_AFLAGS="-proto_dist inet6_tcp"
9999

100100
CMD ["/app/bin/server"]

0 commit comments

Comments
 (0)