Skip to content

Commit

Permalink
Add dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Oct 29, 2024
1 parent d51368f commit 59a7ca1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
FROM python:3.10-slim

LABEL vendor=neon.ai \
ai.neon.name="neon-users-service"

ENV OVOS_CONFIG_BASE_FOLDER neon
ENV OVOS_CONFIG_FILENAME diana.yaml
ENV XDG_CONFIG_HOME /config
COPY docker_overlay/ /

RUN apt-get update && \
apt-get install -y \
gcc \
python3 \
python3-dev \
&& pip install wheel

ADD . /neon_users_service
WORKDIR /neon_users_service
RUN pip install .[mq]

CMD ["neon_users_service"]

0 comments on commit 59a7ca1

Please sign in to comment.