HiGal opened a new issue, #25307:
URL: https://github.com/apache/airflow/issues/25307
### Apache Airflow version
2.3.2
### What happened
I am trying to install swig3.0 inside airflow container for Jamspell using
following Dockerfile
```Dockerfile
FROM apache/airflow:2.3.2-python3.8
USER root
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
build-essential git \
&& apt-get autoremove -yqq --purge \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get update \
&& apt install -y swig3.0
```
I got following error
```
Reading package lists...
Building dependency tree...
Reading state information...
E: Unable to locate package swig3.0
E: Couldn't find any package by glob 'swig3.0'
```
### What you think should happen instead
When I used previous version 2.1.0 I didn't meet those error.
### How to reproduce
To reproduce you should try to build following docker image from this
Dockerfile:
```Dockerfile
FROM apache/airflow:2.3.2-python3.8
USER root
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
build-essential git \
&& apt-get autoremove -yqq --purge \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get update \
&& apt install -y swig3.0
```
### Operating System
MacOS
### Versions of Apache Airflow Providers
_No response_
### Deployment
Docker-Compose
### Deployment details
_No response_
### Anything else
_No response_
### Are you willing to submit PR?
- [ ] Yes I am willing to submit a PR!
### Code of Conduct
- [X] I agree to follow this project's [Code of
Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]