aboutsummaryrefslogblamecommitdiffstats
path: root/Dockerfile
blob: ae6870e311025580798f9c9dba6c27f1be849466 (plain) (tree)
1
2
3
4
5
6
7
8
               


                  



                                                              





                                                
FROM alpine:3.5

ADD . /go-ethereum
RUN \
  apk add --update git go make gcc musl-dev linux-headers && \
  (cd go-ethereum && make geth)                           && \
  cp go-ethereum/build/bin/geth /geth                     && \
  apk del git go make gcc musl-dev linux-headers          && \
  rm -rf /go-ethereum && rm -rf /var/cache/apk/*

EXPOSE 8545
EXPOSE 30303

ENTRYPOINT ["/geth"]
dump/Makefile?id=66a81c62b92aa3373e54dc3b68238b43561f244f'>tree)
1
2
3
4
5
6
7
8
9








                                                                            
                 
                   
                                                                   


                                    
                                                  
 
                                                         
 
                                  
                   


                                                                          




                       

                                                

                                           
                                                          
                                                            


                                                           

                      
# New ports collection makefile for:    xipdump
# Date created:             17 Jun 2001
# Whom:                 UMENO Takashi <umeno@rr.iij4u.or.jp>
#
# $FreeBSD$
#

PORTNAME=   xipdump
PORTVERSION=    1.5.4
PORTREVISION=   4
CATEGORIES= net
MASTER_SITES=   http://www.lse.epita.fr/twiki/pub/Projects/XipDump/
EXTRACT_SUFX=   .tgz

MAINTAINER= umeno@rr.iij4u.or.jp
COMMENT=    Displays ip packets using X window

BUILD_DEPENDS=  ${LIBNET_CONFIG}:${PORTSDIR}/net/libnet10

USE_XORG=   xt x11 ice xaw xmu
GNU_CONFIGURE=  yes
CONFIGURE_ENV=  LDFLAGS="`${LIBNET_CONFIG} --libs`"
CFLAGS+=    `${LIBNET_CONFIG} --cflags` `${LIBNET_CONFIG} --defines` \
        -I/usr/include

PLIST=  ${WRKDIR}/PLIST

MAN8=   xipdump.8

LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet10-config

post-build:
    @${CP} ${PKGDIR}/pkg-plist ${PLIST}
    @(cd ${WRKSRC}/data; ${FIND} pkc pkt ! -type d | \
        ${SED} -e 's|^|share/xipdump/|' >> ${PLIST})
    @${ECHO_CMD} "@dirrm share/xipdump/pkt" >> ${PLIST}
    @${ECHO_CMD} "@dirrm share/xipdump/pkc" >> ${PLIST}
    @${ECHO_CMD} "@dirrm share/xipdump" >> ${PLIST}

.include <bsd.port.mk>