Skip to content

Commit

Permalink
Add Dockerfile and requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
PhongT16 committed Sep 19, 2023
1 parent 7f584c2 commit edddb11
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM python:3

ENV TZ=America/Chicago
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

RUN mkdir /home/mail_ldif

COPY . /mail_ldif
WORKDIR /mail_ldif
RUN python -m pip install -r /mail_ldif/requirements.txt

CMD ["bash"]
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ldap3

0 comments on commit edddb11

Please sign in to comment.