mirror of
https://github.com/grillazz/fastapi-sqlalchemy-asyncpg.git
synced 2025-08-26 16:40:40 +03:00
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE321-LIBXML2-9380738 - https://snyk.io/vuln/SNYK-ALPINE321-LIBXML2-9360831 - https://snyk.io/vuln/SNYK-ALPINE321-LIBXML2-9360925 - https://snyk.io/vuln/SNYK-ALPINE321-LIBXSLT-9407516 - https://snyk.io/vuln/SNYK-ALPINE321-LIBXSLT-9407517
14 lines
565 B
Docker
14 lines
565 B
Docker
# pull official base image
|
|
FROM postgres:17.5-alpine
|
|
|
|
# run create.sql on init
|
|
ADD create.sql /docker-entrypoint-initdb.d
|
|
|
|
WORKDIR /home/gx/code
|
|
|
|
COPY shakespeare_chapter.sql /home/gx/code/shakespeare_chapter.sql
|
|
COPY shakespeare_work.sql /home/gx/code/shakespeare_work.sql
|
|
COPY shakespeare_wordform.sql /home/gx/code/shakespeare_wordform.sql
|
|
COPY shakespeare_character.sql /home/gx/code/shakespeare_character.sql
|
|
COPY shakespeare_paragraph.sql /home/gx/code/shakespeare_paragraph.sql
|
|
COPY shakespeare_character_work.sql /home/gx/code/shakespeare_character_work.sql |