Skip to content

Commit

Permalink
cleanup & release
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Jun 15, 2024
1 parent 788ad1c commit 142a080
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"
FROM ${BUILDER_IMAGE} as builder

# install build dependencies
RUN apt-get update -y && apt-get install -y build-essential git curl \
RUN apt-get update -y && apt-get install -y build-essential git \
&& apt-get clean && rm -f /var/lib/apt/lists/*_*

# prepare build dir
Expand Down Expand Up @@ -68,7 +68,7 @@ RUN mix release
# the compiled release and other runtime necessities
FROM ${RUNNER_IMAGE}

RUN apt-get update -y && apt-get install -y libstdc++6 openssl libncurses5 locales ca-certificates \
RUN apt-get update -y && apt-get install -y libstdc++6 openssl libncurses5 locales ca-certificates curl \
&& apt-get clean && rm -f /var/lib/apt/lists/*_*

# Set the locale
Expand Down
1 change: 0 additions & 1 deletion lib/lynx_web/templates/page/profile.html.heex
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,6 @@
<div class="mb-24">
<input class="form-control" name="api_key" type="text" value={@data.user_api_key} disabled>
</div>
<button class="btn btn-primary"><%= gettext "Rotate API Key" %></button>
</div>
</div>
</div>
Expand Down

0 comments on commit 142a080

Please sign in to comment.