Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "patch: aptでmysqlの署名キー期限切れが発生しておりインストールでコケるのをパッチする https://github.com/apache/airflow/issues/36231" #3

Merged
merged 1 commit into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions webapp/go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@ FROM golang:1.21.0-bookworm

WORKDIR /tmp
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update &&\
apt-get install -y gnupg2 &&\
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B7B3B788A8D3785C &&\
apt-get update && \
RUN apt-get update && \
apt-get -y upgrade && \
apt-get install -y curl wget gcc g++ make sqlite3 locales locales-all && \
wget -q https://dev.mysql.com/get/mysql-apt-config_0.8.29-1_all.deb && \
Expand Down
5 changes: 1 addition & 4 deletions webapp/node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@ FROM node:20.9.0-bullseye-slim

WORKDIR /tmp
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update &&\
apt-get install -y gnupg2 &&\
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B7B3B788A8D3785C &&\
apt-get update && \
RUN apt-get update && \
apt-get -y upgrade && \
apt-get install -y curl wget gcc g++ make sqlite3 locales locales-all && \
wget -q https://dev.mysql.com/get/mysql-apt-config_0.8.29-1_all.deb && \
Expand Down