Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSAMI-WSL
QOSAMI-WSL
/
tools
/
test
/
images
/
wslc-registry
/
Dockerfile
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
text
8 lines
183 Bytes
Copy permalink
Copy
Raw
1
FROM
registry:3
2
3
RUN
apk add
--no-cache
apache2-utils
4
5
COPY
entrypoint.sh /entrypoint.sh
6
RUN
sed
-i
's/\r$//'
/entrypoint.sh
&&
chmod
+x /entrypoint.sh
7
8
ENTRYPOINT
["/entrypoint.sh"]