Skip to content

Commit 08556c8

Browse files
committed
Update Dockerfile and remove log_handler.py from project
The Dockerfile was updated to use the `python:3.12-alpine` base image, set the working directory to `/app`, and remove the `COPY` instruction for the `CustomModules` directory. Environment variables `TERM=xterm` and `PYTHONUNBUFFERED=1` were added. In the `WebhookCreator.pyproj` file, the `<Compile>` entry for `CustomModules\log_handler.py` was removed, excluding this file from the project.
1 parent 27a2235 commit 08556c8

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

WebhookCreator/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ FROM python:3.12-alpine
22

33
WORKDIR /app
44

5-
COPY CustomModules ./CustomModules
65
COPY *.py .
76
COPY requirements.txt .
87

WebhookCreator/WebhookCreator.pyproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
2727
</PropertyGroup>
2828
<ItemGroup>
29-
<Compile Include="CustomModules\log_handler.py" />
3029
<Compile Include="Dockerfile" />
3130
<Compile Include="main.py" />
3231
<Compile Include="__init__.py" />

0 commit comments

Comments
 (0)