9d845c8899
- backend moved to backend directory - added and initialized frontend with vue - moved infrastructure files to infra directory
6 lines
145 B
Docker
6 lines
145 B
Docker
FROM postgres:16
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends postgresql-16-cron \
|
|
&& rm -rf /var/lib/apt/lists/*
|