feat: make http-server listen on all network interfaces

This commit is contained in:
Krzysztof R. 2024-05-12 12:59:33 +02:00
parent 4abfd73e9d
commit 35bafc1814

View File

@ -12,4 +12,5 @@ RUN npm install -g http-server
COPY . .
EXPOSE 8080
CMD ["http-server", "-p 8080"]
CMD ["http-server", "-p 8080", "-a 0.0.0.0"]