WASdev / ci.docker.websphere-traditional

Dockerfiles for WebSphere Application Server traditional
Apache License 2.0
171 stars 192 forks source link

Add routes... #88

Closed sixblades closed 5 years ago

sixblades commented 6 years ago

I need to add routes to the project, inside linux it says command not found all the time. Does anyone know how to add routes to this linux? Thank you

arthurdm commented 6 years ago

have you tried doing apt-get install net-tools?

arturdzm commented 5 years ago

If you need to install any extra packages, best done during docker build:

FROM ibmcom/websphere-traditional
USER root
RUN apt-get update && apt-get install package-name
USER was